home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / submit-changer.izs < prev    next >
Text File  |  2005-09-28  |  2KB  |  92 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Submit Changer 
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Changes the caption of the form's submit button while the form is being submitted. This helps eliminate the confusion that can sometimes occur when a form takes quite a while to be processed by the server. <!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL SUBMIT CHANGER:
  15.  
  16.   1.  Copy code into the HEAD section of document
  17.   2.  Put last coding into the BODY section of document  -->
  18.  
  19. <!-- STEP ONE: Add code into HEAD section of document  -->
  20.  
  21. <HEAD>
  22.  
  23. <SCRIPT LANGUAGE="JavaScript">
  24. <!-- Original:  Mike Fernandez -->
  25.  
  26.  
  27.  
  28. <!-- Begin
  29. function submitForm(s)  {
  30. s.value = "  Sending...  ";
  31. return true;
  32. }
  33. //  End -->
  34. </script>
  35. </HEAD>
  36.  
  37. <!-- STEP TWO: Add code into BODY section of document  -->
  38.  
  39. <BODY>
  40.  
  41. <center>
  42. <form name=myform onSubmit="return submitForm(this.submitbutton)">
  43. Name:  <input type=text name=firstname size=20>
  44. <input type=submit name=submitbutton value="All Done">
  45. </form>
  46. </center>
  47.  
  48. <!-- END OF SCRIPT -->
  49. <!/SCRIPT>
  50.  
  51. <!PREVIEW>
  52. <!-- START OF SCRIPT -->
  53.  
  54. <!-- HOW TO INSTALL SUBMIT CHANGER:
  55.  
  56.   1.  Copy code into the HEAD section of document
  57.   2.  Put last coding into the BODY section of document  -->
  58.  
  59. <!-- STEP ONE: Add code into HEAD section of document  -->
  60.  
  61. <HEAD>
  62.  
  63. <SCRIPT LANGUAGE="JavaScript">
  64. <!-- Original:  Mike Fernandez -->
  65.  
  66.  
  67.  
  68. <!-- Begin
  69. function submitForm(s)  {
  70. s.value = "  Sending...  ";
  71. return true;
  72. }
  73. //  End -->
  74. </script>
  75. </HEAD>
  76.  
  77. <!-- STEP TWO: Add code into BODY section of document  -->
  78.  
  79. <BODY>
  80.  
  81. <center>
  82. <form name=myform onSubmit="return submitForm(this.submitbutton)">
  83. Name:  <input type=text name=firstname size=20>
  84. <input type=submit name=submitbutton value="All Done">
  85. </form>
  86. </center>
  87.  
  88. <!-- END OF SCRIPT -->
  89. <!/PREVIEW>
  90.  
  91. <!RELATED>NONE<!/RELATED>
  92.